home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 187_01 / blkdef.mon < prev    next >
Text File  |  1985-12-29  |  190b  |  8 lines

  1.  
  2. struct ndx {
  3.     struct ndx *next;        /* pointer to next structure */
  4.     int blk_ptr;            /* pointer to owned block    */
  5.     char nkey[KEYSIZE];        /* key save area */
  6.     } queue_hd = {0, 0, ""};
  7.  
  8.